Detects if notepad.exe is running and kills it on users request
<#> <#> Sample: Detects if notepad.exe is running and kills it on users request. <#> <cmds> <if_process>(notepad.exe,EXIST) <msg>(-100,-100,"Notepad.exe is running. Do you want to kill it?","Message",2) <if_str>("_vMsgButton==YES") <process_kill>(notepad.exe) <endif> <else> <msg>(-100,-100,"Notepad.exe is not running.","Message",1) <endif>